home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20010306-20010921 / 000107_news@columbia.edu _Tue May 8 11:37:53 2001.msg < prev    next >
Internet Message Format  |  2001-09-20  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from kachifo.cc.columbia.edu (kachifo.cc.columbia.edu [128.59.59.172])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id LAA19845
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Tue, 8 May 2001 11:37:52 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by kachifo.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id LAA00882
  7.     for <kermit.misc@smtp.cc.columbia.edu>; Tue, 8 May 2001 11:37:47 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id LAA15361
  10.     for kermit.misc@watsun.cc.columbia.edu; Tue, 8 May 2001 11:27:39 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: Need help with Mac OS X 10.0.2
  14. Date: 8 May 2001 11:27:33 -0400
  15. Organization: Columbia University
  16. Message-ID: <9d9395$rt3@watsun.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <9d90vh$ot8$1@jake.esu.edu>,
  20. David H. Hutchens <hutchens@cs.millersville.edu> wrote:
  21. : Thanks for your response, Frank.
  22. : Yes, it was working in Mac OS X public beta.
  23. : I have not tried recompiling. I'll can give it a shot.
  24. Yes, please do.
  25.  
  26. : I did try setting flow control rts/cts. ( I noticed that oddity after
  27. : I sent the previous message). Maybe I had turned it off in public beta
  28. : because:
  29. : Tuning on RTS/CTS resulted in a message that says:
  30. :    Warning -SET FLOW RTS/CTS is in effect but modems CTS signal is off.
  31. :    Disabling flow control temporarily during dialing.
  32. Did RTS/CTS work in the public Beta?
  33.  
  34. : But then.... I was able to log in on the remote machine.  Oddly, I
  35. : got a system beep along with the echo of the first 4 or 5 characters
  36. : of my login name. Then things seemed to work OK.
  37. : Is it OK to ignore the above warning? Does it still enable RTS/CTS
  38. : after the connection? How can I tell?
  39. The message is worrisome.  It probably means that the API for hardware
  40. flow control and/or modem-signal testing changed or broke.  Of course I 
  41. have no way of knowing that, nor of knowing what they changed to.
  42.  
  43. : But when I tried to download a file, I got errors.
  44. Because flow control was not working.
  45.  
  46. : I set the buffer size down until I got to 512 and that allowed
  47. : files to download. Even a 1 MB binary file downloaded OK, with no
  48. : reported errors.  The download speed was over 2700 CPS. The modem on
  49. : the other end is a 28K modem, so that seemed quite reasonable.
  50. A good thing about Kermit protocol is that it can be made to work even
  51. when important parts of the connection are broken.  But it would be
  52. preferable to make flow control work right.
  53.  
  54. : My wife notes that our old 14400 zyxel modem connected to a
  55. : NeXTStation has been having some phone line problems in the last two
  56. : weeks so perhaps we have a more noisy phone line than when I tried
  57. : with the public beta.
  58. No, the problem in your case is that Kermit can't sense the CTS line
  59. from the modem.  Assuming that you had been using RTS/CTS before the
  60. OS upgrade, it indicates a software change, bug, or incompatibility.
  61.  
  62. : Finally, I notice that when I quit kermit, it says the modem may
  63. : still be active and I tell it to quit anyway.
  64. Another indication that the API for accessing modem signals is broken.
  65.  
  66. : But it apparently did not hang up. How can I force it to hang
  67. : up the phone?
  68. If you exit from Kermit or give it the HANGUP command, it hangs up by
  69. dropping DTR.  But since the modem-signal API isn't working on Mac OS X,
  70. probably DTR isn't really being dropped.  But Kermit always gives you
  71. another way to work around broken components:
  72.  
  73.   set modem hangup-method modem-command
  74.   hangup
  75.  
  76. This makes Kermit hang up by sending +++ and then ATH0.
  77.  
  78. So how do we get the real problem fixed?  First try recompiling and see
  79. if that clears things up.  If not, it would be best if I could get
  80. telnet/ftp access to your Mac, or another one that has the same OS
  81. level so I can poke around the header files, man pages, etc, and see
  82. if I can get at the modem signals.  (Of course even then I can't actually
  83. see/hear what's happening, but it's better than nothing.)  Failing that,
  84. somebody who has Mac OS X 10.2 and a modem will have to make the code
  85. work (I can point out the relevant modules and functions).
  86.  
  87. - Frank
  88.